Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - socket udp
Search - socket udp - List
内有UDP点对点聊天及TCP.UDP高级编程等相关的详细代码。从事网络编程开发及学习者值得借鉴。-Within the UDP peer-to-peer chat and have TCP.UDP high-level programming code and other related details. Engaged in the development of network programming and learners to learn.
Date : 2025-07-01 Size : 291kb User : wangxh

linux下的udp socket通信,包括client和server端程序代码。-Udp socket communications linux under , including both client and server sides.
Date : 2025-07-01 Size : 1kb User : 白鸽

tcp udp socket vc++ c#
Date : 2025-07-01 Size : 391kb User : jia

本书是一本以网络应用实例为主的实用型参考书,主要包括访问网络资源、网络Applet小程序、Socket、UDP协议通讯、网络组播、邮件收发、远程方法调用、多媒体数据流的传输和播放,以及常用网络工具的实例等。-This book is a web-based application of practical reference books, including access to network resources, network Applet applet, Socket, UDP communication protocol, network multicast, to send and receive e-mail, remote method invocation, the transmission of multimedia data streams and play, as well as examples of commonly used, such as web-based tools.
Date : 2025-07-01 Size : 1.96mb User : 洛洛

采用了C++ BUILDER6.0中的SOCKET控件、UDP控件和系统自带的API函数来实现屏幕抓取、文件传输、远程控制等核心内容-failed to translate
Date : 2025-07-01 Size : 162kb User : 董晨晨

利用socket进行的UDP连接,包括发送端和接收器端.-Socket using the UDP connection, including sender and receiver.
Date : 2025-07-01 Size : 2.25mb User : lyq

主要是进行socket建立Tcp/ip传输,并且也可以进行UDP的传输-Socket is mainly carried out to establish Tcp/ip transmission, and will be able to conduct UDP transmission
Date : 2025-07-01 Size : 21kb User : asas

一个例子,用VC实现多线程的SOCKET UDP 通信。-An example of using VC to achieve multithreading SOCKET UDP communication.
Date : 2025-07-01 Size : 22kb User : 李洪坛

UDP 服务端,socket编程的好帮手-UDP SEVER
Date : 2025-07-01 Size : 32kb User : qixiansheng

基于控制台的socket通信实例: 包括1.基于控制台socket通信 2.基于控制台的聊天程序-tcp 3.基于控制台的聊天程序-udp 注意:上传的为源代码基于控制台socket通信 使用时为每个文件新建一个工程先运行Srv再运行Client-Console-based socket communication examples include: 1. Console-based socket communication 2. Console-based chat program-tcp 3. Console-based chat program-udp Note: upload the source code for the console-based socket communication using time for each file create a new project first and then run the Client is running Srv
Date : 2025-07-01 Size : 5kb User : 刘小白

a simple UDP socket connection using windows socket library (WS2_32.lib).
Date : 2025-07-01 Size : 7.54mb User : ariesooi

socket实现udp组播,需要用UDP通信可以参照-udp multicast socket implementation
Date : 2025-07-01 Size : 204kb User : andy

实现UDP传输 for linux udp socket -for linux udp socket
Date : 2025-07-01 Size : 1kb User : 大彬

DL : 0
java实现UDP socket打洞,使消息在nat之间传递-java implementation UDP socket holes, so that messages passed between the nat! ! !
Date : 2025-07-01 Size : 109kb User : bobhpf

这是一个UDP小程序,里面主要就是发送和接收的源代码。-This is a UDP small program, which is mainly to send and receive the source code.
Date : 2025-07-01 Size : 36kb User : 仇荣华

DL : 0
it is about socket programming in client side in windows.
Date : 2025-07-01 Size : 36kb User : saeid zamani

对Xmodem 协议进行分析,设计Xmodem 协议的结构、机制、元素等。利用Socket 接口编程实现基于UDP 的Xmodem 协议-Of Xmodem protocol analysis, design Xmodem protocol structure, mechanism, elements and so on. Socket Interface Programming using the Xmodem protocol based on UDP
Date : 2025-07-01 Size : 703kb User : celine

C++ SOCKET UDP IMPLIMENTATION
Date : 2025-07-01 Size : 1kb User : zakibsix

tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Date : 2025-07-01 Size : 2kb User : 闛靚

linix网络编程,tcp ,udp,多线程,socket等比较适合初学者学习的源代码-linix network programming, tcp, udp, multi-threading, socket and so more suitable for beginners to learn the source code
Date : 2025-07-01 Size : 107kb User : 浪击天涯
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.